/**思源宋体*/
@font-face {
    font-family: 'Source Han Serif';
    src: url('/assets/pc/fonts/SOURCEHANSERIFCN-BOLD.OTF');
    font-weight: bold;
    font-display: swap; /* 避免加载期文字不可见 */
}
/*video*/
.top-videos{
    margin-bottom: 64px;
}
.top-videos-show{
    display: grid;
    height: 400px;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: 3fr 2fr;
    grid-column-gap:20px;
    grid-row-gap:30px;
    grid-template-areas: '. pic' '. pic';
}
.top-videos-show-title{
}
.top-videos-show-title img{
    width: 100%;
    height: 225px;
    object-fit: cover;
}
.top-videos-show-desc .title{
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.top-videos-show-desc .title div{
    font-size: 16px;
    font-weight: bold;
}
.top-videos-show-desc .title span{
    display: inline-block;
    height: 1px;
    width: 80%;
    background-color: #8c8887;
    text-align: center;
}
.top-videos-show-desc .content{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* 控制显示的行数 */
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    line-height: 24px;
    margin: 5px auto;
}
.top-videos-show-desc a{
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 24px;
    font-size: 13px;
    color: #000;
    font-weight: bold;
}
.top-videos-show-pic{
    grid-area:pic;
}
.top-videos-show-pic video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-videos-sign{
    height: 30px;
    line-height: 30px;
    background-color: #efefef;
    margin: 20px auto 10px;
}
.top-videos-sign span{
    font-size: 20px;
    font-weight: bold;
    color: #be292d;
}

.top-videos-content-main{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-template-rows: auto;
    grid-gap:15px;
}

.top-videos-content .item{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 120px;
    border-radius: 12px;
}
.top-videos-content .item img{
    width: 100%;
    height: 100%;
}
.top-videos-content .item span{
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 25px;
    font-size: 14px;
    text-align: center;
    line-height: 25px;
    background: rgba(68, 63, 59, 0.6);
    color: #ffffff;
}
.top-videos-content .item .active{
    background: rgba(230, 33, 42, 0.7);
    color: #fff;
}

.top-videos-content .more{
    display: block;
    width: 100%;
    color: #000;
    height: 30px;
    line-height: 30px;
    margin-top: 20px;
    text-align: center;
}

/*区县首页*/
.area-index{
    color: #000000;
}
.area-index-title{
    line-height: 40px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.area-index-title span{
    color: #be292d;
    font-weight: bold;
}
.area-index-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);;
    grid-gap: 15px;
}
.area-index-content .item-one{
    grid-area: 1 / 1 / span 2 / span 2;
    width: 100%;
    height: 415px;
    position: relative;
}
.area-index-content .item{
    width: 100%;
    height: 200px;
    position: relative;
}
.area-index-content .item-title{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #ffffff;
    background: rgba(68, 63, 59, 0.6);
    white-space: nowrap;       /* 禁止换行 */
    overflow: hidden;          /* 隐藏超出的内容 */
    text-overflow: ellipsis;   /* 超出部分显示为省略号 */
}
.area-index-content .play-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 精确居中 */
    width: 50px;
    height: 50px;
    background-color: #252020; /* 播放图标的颜色 */
    mask: url('../images/play_icon.png') no-repeat center / contain; /* 使用 SVG 或其他图标 */
    -webkit-mask: url('../images/play_icon.png') no-repeat center / contain; /* 兼容性处理 */
}
.area-index-content .item-one .play-icon{
    width: 100px;
    height: 100px;
}
.area-index-content img{
    width: 100%;
    height: 100%;
}
.area-index-content video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.area-index-content .item-more{
    grid-area: 3 / 3 / span 1 / span 2;
    justify-self: center;
    color: #000000;
    margin-top: 10px;
}



/* banner */
.banner{
    position: relative;
    width: 100%;
    max-width: 2560px;
    min-width: 1200px;
    height: 400px;
    margin: 0 auto;
    background-size: 100% 100%;
}
.banner-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 2560px;
    min-width: 1200px;
    height: 400px;
    background: url(../images/index_banner.jpg) no-repeat center;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    column-gap: 60px;
    font-size: 72px;
    color: #ffffff;
}
.banner-area{
    position: relative;
    width: 100%;
    max-width: 2560px;
    min-width: 1200px;
    margin: 0 auto 40px auto;
    background-size: 100% 100%;
}
.banner-bg-area img{
    width: 100%;
    height: 100%;
}
.banner-bg div{
    padding-top: 80px;
    font-family: 'Source Han Serif', serif;
}
.banner h1{
    color: #FFFFFF;
    font-size: 56px;
    font-weight: bold;
    line-height: 84px;
    text-align: center;
    padding-top: 70px;
    text-shadow: 0px 2px 6px #00277F;
}

.banner-search{
    position: relative;
    top: 220px;
    width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}
.banner-search input{
    float: left;
    width: 520px;
    height: 30px;
    padding-left: 18px;
    background-color: #FFFFFF;
    box-shadow: 0px 2px 14px 0px rgba(71,111,162,0.42);
    border-radius: 2px;
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(15px);
}
.banner-search input::placeholder{
    color: #333333;
    font-size: 14px;
    font-weight: 400;
}
.banner-search-operate{
    position: absolute;
    right: 0;
    width: 80px;
    height: 32px;
    background-color: #D50000;
    border-radius: 0px 2px 2px 0px;
    cursor: pointer;
}
.banner-search-operate:hover{
    background-color: #B60E0E;
}
.banner-search-operate img{
    display: block;
    width: 26px;
    height: 26px;
    margin: 4px auto;
}

/** 新闻滚动 */
.news-scroll{
    display: flex;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    position: relative;
    background-color: #ece6e6;
    margin-bottom: 20px;
    gap:20px;
    border-radius: 4px; /* 增加圆角 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* 轻微阴影提升层次感 */
}
.news-scroll-title{
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 5px;
    white-space: nowrap; /* 防止标题换行 */
}
.news-scroll-title img{
    width: 20px;
    height: 20px;
}
.news-scroll-title span{
    font-weight: bold;
}
.news-scroll-list{
    flex: 1; /* 填充剩余空间 */
    margin: 0;
    padding: 0;
    list-style: none;

    will-change: transform; /* 启用硬件加速 */
    transition: transform 0.3s ease-out; /* 平滑滚动过渡 */
}
.news-scroll-list li{
    padding-right: 20px; /* 避免文字贴边 */
    white-space: nowrap; /* 单行显示 */
    overflow: hidden;
    text-overflow: ellipsis; /* 超长文本省略号 */
}
.news-scroll-list a{
    color: #000000;
}

/* 选址项目对接 */
.dock-item{
    width: 100%;
    max-width: 2560px;
    min-width: 1200px;
    margin: 0 auto;
}
.dock-ul li{
    display: none;
    float: left;
}
.dock-ul li.active{
    display: block;
}
.dock-item-single{
    position: relative;
    float: left;
    width: 342px;
    /*height: 90px;*/
    margin: 16px 15px 0 0;
    padding: 24px;
    border-radius: 2px;
    background: #FFFFFF;
    box-shadow: 2px 6px 20px 0px rgba(215,224,230,0.3);
}
.relabel-tag-img-pc{
    position: relative;
}
.dock-item-single.no-margin-right{
    margin: 16px 0 0 0;
 }

.dock-item-single .item-name{
    display: inline-block;
    max-width: 342px;
    height: 24px;
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.dock-item-single .item-name:hover{
    color: #D50000;
}
.dock-item-single .item-district{
    margin-top: 11px;
    overflow: hidden;
}
.dock-item-single .item-district span{
    float: left;
    width: 90px;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
}
.dock-item-single .item-district p{
    float: left;
    /*width: 270px;*/
    height: 14px;
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.item-user{
    margin-top: 18px;
    overflow: hidden;
}
.item-user-logo{
    float: left;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    margin-right: 8px;
}
.item-user-logo img{
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    object-fit: cover;
    object-position: top;
}
.item-user-logo span{
    display: block;
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    line-height: 24px;
    text-align: center;
    border-radius: 2px;
}
.item-username{
    float: left;
    max-width: 78px;
    height: 24px;
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.item-operate{
    float: left;
    cursor: pointer;
}
.item-operate img{
    float: left;
    width: 18px;
    height: 18px;
    margin: 3px 0 3px 8px;
}
.item-operate:hover .common-module-default{
    display: none;
}
.item-operate:hover .common-module-active{
    display: block;
}
.item-operate:hover +.item-code{
    display: block;
}
.item-code{
    display: none;
    position: absolute;
    z-index: 1;
    top: -21px;
    right: 24px;
    padding: 10px;
    border-radius: 2px;
    background: #FFFFFF;
    box-shadow: 2px 6px 20px 0px rgb(215 224 230 / 30%);
}
.item-code img{
    display: block;
    width: 160px;
    height: 160px;
}
.item-area{
    float: right;
    color: #D50000;
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width:200px;
}
.dock-item-more .common-see-more{
    display: none;
}
.dock-item-more .common-see-more.active{
    display: block;
}

/* 推荐招商载体 */
.carrier{
    width: 100%;
    max-width: 2560px;
    min-width: 1200px;
    margin: 0 auto;
}
.carrier-ul li{
    float: left;
    display: none;
}
.carrier-ul li.active{
    display: block;
}
.carrier-single{
    float: left;
    width: 288px;
    margin: 16px 16px 0 0;
    border-radius: 2px;
    background-color: #FFFFFF;
    box-shadow: 2px 6px 20px 0px rgba(215,224,230,0.3);
}
.carrier-single.no-margin-right{
    margin: 16px 0 0 0;
}
.carrier-pic{
    display: block;
    width: 288px;
    height: 216px;
    overflow: hidden;
}
.carrier-pic img{
    display: block;
    width: 288px;
    height: 216px;
    transition: all 0.5s;
}
.carrier-info{
    padding: 20px 24px 24px 24px;
}
.carrier-title{
    display: inline-block;
    max-width: 242px;
    height: 26px;
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.carrier-title:hover{
    color: #D50000;
}
.carrier-district{
    margin-top: 8px;
    overflow: hidden;
}
.carrier-district img{
    float: left;
    width: 18px;
    height: 18px;
    margin: 1px 4px 1px 0;
}
.carrier-district span{
    float: left;
    width: 182px;
    height: 20px;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.carrier-single:hover .carrier-pic img {
    transform: scale(1.2,1.2);
}
.carrier-see-more .common-see-more{
    display: none;
    margin: 24px auto 32px auto;
}
.carrier-see-more .common-see-more.active{
    display: block;
}

/* 观点 */
.viewpoint{
    width: 100%;
    max-width: 2560px;
    min-width: 1200px;
    margin: 32px auto 0 auto;
}
.viewpoint .common-double-left{
    height: 352px;
}
.viewpoint-policy-single{
    margin-top: 24px;
}
.viewpoint-policy-pic{
    float: left;
    width: 398px;
    height: 224px;
    margin-right: 22px;
    overflow: hidden;
}
.viewpoint-policy-pic img{
    float: left;
    width: 398px;
    height: 224px;
    transition: all 0.5s;
}
.viewpoint-policy-pic:hover img{
    transform: scale(1.2,1.2);
}
.viewpoint-policy-info {
    position: relative;
    float: left;
    width: 426px;
    margin-bottom: 36px;
}
.viewpoint-policy-info.no-margin-bottom{
    margin-bottom: 0;
}
.viewpoint-policy-title{
    overflow: hidden;
}
.viewpoint-policy-title a{
    float: left;
    max-width: 354px;
    height: 24px;
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    margin-right: 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.viewpoint-policy-title a:hover{
    color: #D50000;
}
.viewpoint-policy-title span{
    float: left;
    width: 64px;
    height: 20px;
    color: #808695;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    margin: 2px 0;
    border-radius: 2px;
    background-color: #F2F3F8;
}
.viewpoint-policy-desc{
    max-height: 66px;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 4px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
}

.viewpoint-policy-ul{
    margin-top: 10px;
    overflow: hidden;
}
.viewpoint-policy-ul li{
    float: left;
    width: 412px;
    margin: 16px 22px 0 0;
}
.viewpoint-policy-ul li.no-margin-right{
    float: left;
    margin: 16px 0 0 0;
}
.viewpoint-policy-ul li span{
    float: left;
    width: 64px;
    height: 20px;
    color: #808695;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    margin-right: 8px;
    border-radius: 2px;
    background-color: #F2F3F8;
}
.viewpoint-policy-ul li a{
    float: left;
    max-width: 340px;
    height: 20px;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.viewpoint-policy-ul li a:hover{
    color: #D50000;
}
.viewpoint-right-ul{
    padding-top: 8px;
    overflow: hidden;
}
.viewpoint-right-ul a{
    float: left;
    width: 114px;
    margin: 16px 14px 0 0;
    padding: 20px 0 24px 0;
    border-radius: 2px;
    background-color: #F9FAFD;
}
.viewpoint-right-ul a:hover{
    background-color: #EFF2F8;
}
.viewpoint-right-ul a.no-margin-right{
    margin: 16px 0 0 0;
}
.viewpoint-right-ul a img{
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto 8px auto;
}
.viewpoint-right-ul a span{
    display: block;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}


/*活动邀请的弹窗*/
.invest-info{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: auto;
    display: none;
}
.invest-bg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 998;
    width: 100%;
    min-height: 100%;
}
.invest-center{
    width: 350px;
    _margin-top: 100px;
    overflow: hidden;
    z-index: 999;
    padding: 23px 25px;
    background: url('../images/invest_modal_bk.png');
    position: absolute;
    left: 50%;
    margin-left: -200px;
    top: 50%;
    margin-top: -200px;
}
.invest-center .close-img{
    float: right;
    width: 12px;
    margin-top: -20px;
    margin-right: -20px;
}
.invest-string{
    text-align: center;
    line-height: 36px;
    font-size: 18px;
    color: #fff;
}

.invest-btn{
    overflow: hidden;
    margin-top: 30px;
    margin-left: 10px;
}
.invest-btn div{
    width: 160px;
    height: 48px;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    float: left;
    cursor: pointer;
    color: #D50000;
}
.invest-btn .invest-register{
    background: url('../images/invest_modal_register.png');
    margin-right: 10px;
}
.invest-login{
    background: url('../images/invest_modal_login.png');
}
.invest-close{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 25px;
    margin-left: -20px;
    cursor: pointer;
    z-index: 999;
}
.invest-close img{
    width: 40px;
    height: 40px;
}

/* 单位认证引导弹窗 */
.business-lead-model{
	display: none;
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 2560px;
	min-width: 1200px;
	height: 100%;
	margin: auto;
	background: rgba(0, 0, 0, 0.6);
}
.business-lead-content{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 300px;
	height: 174px;
	margin:auto;
	padding: 20px 24px;
	background-color: #FFFFFF;
	box-shadow: 0px 2px 26px 0px rgba(0, 0, 0, 0.1);
}
.business-lead-close{
	position: absolute;
	top: 14px;
	right: 14px;
	width: 12px;
	height: 12px;
	cursor: pointer;
}
.business-lead-close img{
	display: block;
	width: 12px;
	height: 12px;
}
.business-lead-title{
	color: #333333;
	font-size: 20px;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
}
.business-lead-intro{
	color: #666666;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	margin: 12px 0 30px 0;
}
.business-lead-content ul{
	overflow: hidden;
}
.business-lead-content ul li{
	width: 138px;
	height: 54px;
	font-size: 16px;
	font-weight: bold;
	line-height: 54px;
	text-align: center;
	border-radius: 2px;
	cursor: pointer;
}
.business-lead-go{
	float: left;
	color: #FFFFFF;
	background-color: #D50000;
}
.business-lead-cancel{
	float: right;
	color: #AFAFAF;
	background-color: #EDEDED;
}


.pendant_login_phone,
.pendant_login_account,
.pendant_login_register,
.pendant_login_forget,
.existing_account_binding,
.existing_phone_binding,
.register_login_binding {
    background: #262727;
}

#zc__sdk__sys__btn,#zc__sdk__container {
    visibility: hidden;
}





/* 推荐园区 */
.recommend-park{
    width: 100%;
    max-width: 2560px;
    min-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.recommend-park-content{
    position: relative;
}
.recommend-park-content li{
    position: absolute;
    top: 0;
    left: 0;
    height: 222px;
    opacity: 0;
}
.recommend-park-content li.active{
    position: relative;
    z-index: 1;
    height: auto;
    opacity: 1;
}

.recommend-park-single{
    float: left;
    width: 390px;
    height: 174px;
    margin: 16px 15px 0 0;
    padding: 24px 0 24px 0;
    overflow: hidden;
    border-radius: 2px;
    background-color: #FFFFFF;;
    box-shadow: 2px 6px 20px 0px rgba(215,224,230,0.3);
}
.recommend-park-single.no-margin-right{
    margin: 16px 0 0 0;
}
.recommend-park-header{
    padding: 0 0 24px 24px;
    overflow: hidden;
}
.recommend-park-logo{
    float: left;
    width: 104px;
    height: 78px;
    margin-right: 16px;
    border-radius: 2px;
    background-color: #FFFFFF;
}
.recommend-park-logo img{
    display: block;
    width: 102px;
    height: 76px;
    border-radius: 2px;
    border: 1px solid #EDEDED;
}
.recommend-park-info{
    float: left;
}
.recommend-park-name{
    display: inline-block;
    max-width: 222px;
    height: 26px;
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    margin-top: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.recommend-park-name:hover{
    color: #D50000;
}
.recommend-park-district{
    margin-top: 12px;
    overflow: hidden;
}
.recommend-park-district img{
    float: left;
    width: 18px;
    height: 18px;
    margin-right: 4px;
}
.recommend-park-district span{
    float: left;
    width: 208px;
    *width: 200px;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.swiper-container.invite-swiper{
    height: 72px;
    padding-left: 24px;
}
.swiper-container.invite-swiper:hover{
    overflow: visible;
}
.inviter-swiper-container{
    position: relative;
    width: 228px;
    height: 40px;
    padding: 16px;
    border-radius: 2px;
    *background: #FFFFFF;
    background: #F5F7FA;
}
.inviter-info-pic{
    float: left;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    border-radius: 2px;
}
.inviter-info-pic img{
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    object-fit: cover;
    object-position: top;
}
.inviter-info-pic .iron-icon{
    position: absolute;
    width: 16px;
    height: 16px;
    bottom: 14px;
    left: 44px;
}
.inviter-info-pic span{
    display: block;
    width: 40px;
    height: 40px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    border-radius: 2px;
}
.inviter-info-detail{
    float: left;
    margin-right: 6px;
}
.inviter-username{
    display: block;
    max-width: 70px;
    height: 18px;
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.inviter-username:hover{
    color: #D50000;
}
.inviter-position{
    width: 72px;
    height: 14px;
    color: #666666;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    margin-top: 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.inviter-info-detail.no-position .inviter-username{
    margin: 10px 0;
}
.inviter-operate{
    float: right;
    width: 98px;
    height: 28px;
    margin: 5px 0;
    border-radius: 2px;
    background-color: #FFFFFF;
    border: 1px solid #DCDCDC;
    cursor: pointer;
}
.inviter-operate .common-module-default,
.inviter-operate .common-module-active
{
    float: left;
    width: 18px;
    height: 18px;
    margin: 5px 2px 5px 10px;
}
.inviter-operate span{
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}
.inviter-operate:hover{
    background-color: #D50000;
}
.inviter-operate:hover .common-module-default{
    display: none;
}
.inviter-operate:hover .common-module-active{
    display: block;
}
.inviter-operate:hover span{
    color: #FFFFFF;
}
.inviter-operate:hover .inviter-qrcode{
    display: block;
}
.inviter-qrcode{
    display: none;
    position: absolute;
    z-index: 99;
    top: -78px;
    right: -92px;
    padding: 5px;
    background-color: #FFFFFF;
    box-shadow: 0px 5px 18px 0px rgb(211 211 211 / 30%);
}
.inviter-qrcode img{
    display: block;
    width: 140px;
    height: 140px;
}
.inviter-qrcode:hover{
    display: block;
}

